projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6c06b14
)
nt/gmake.defs (ARCH): Fix error message in case of unknown architecture.
author
Eli Zaretskii
<eliz@gnu.org>
Thu, 28 Apr 2011 20:43:23 +0000
(23:43 +0300)
committer
Eli Zaretskii
<eliz@gnu.org>
Thu, 28 Apr 2011 20:43:23 +0000
(23:43 +0300)
nt/ChangeLog
patch
|
blob
|
history
nt/gmake.defs
patch
|
blob
|
history
diff --git
a/nt/ChangeLog
b/nt/ChangeLog
index 4c0543ee0088b0a7183c99d922f89c1da68be0ea..ea4f7547962452bf2594ef422bc238d881b1efab 100644
(file)
--- a/
nt/ChangeLog
+++ b/
nt/ChangeLog
@@
-1,3
+1,8
@@
+2011-04-28 Eli Zaretskii <eliz@gnu.org>
+
+ * gmake.defs (ARCH): Fix error message in case of unknown
+ architecture.
+
2011-04-27 Eli Zaretskii <eliz@gnu.org>
* inc/inttypes.h: New file.
diff --git
a/nt/gmake.defs
b/nt/gmake.defs
index 7af7fe4ab680cd5d5c9dbd93ab6f4dc548864bfb..dcc43c985a5cd88305a6a433478b377fbb102a60 100644
(file)
--- a/
nt/gmake.defs
+++ b/
nt/gmake.defs
@@
-149,7
+149,7
@@
ARCH = alpha
ifeq "$(PROCESSOR_ARCHITECTURE)" "PPC"
ARCH = ppc
else
-error Unknown architecture type "$(PROCESSOR_ARCHITECTURE)"
+ $(error Unknown architecture type "$(PROCESSOR_ARCHITECTURE)")
endif
endif
endif